9bf46d5fb8236c6a38e493d49d9b5736d507cf03,src/main/java/org/seleniumhq/selenium/fluent/Internal.java,BaseTestableObject,validateWrapRethrow,#Validation#Context#,906
Before Change
} catch (UnsupportedOperationException e) {
throw e;
} catch (RuntimeException e) {
throw decorateRuntimeException(ctx, e);
} catch (AssertionError e) {
throw decorateAssertionError(ctx, e);
}
After Change
} catch (UnsupportedOperationException e) {
throw e;
} catch (RuntimeException e) {
throw monitor.exceptionDuringExecution(decorateRuntimeException(ctx, e));
} catch (AssertionError e) {
throw monitor.exceptionDuringExecution(decorateAssertionError(ctx, e));
}